home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gnat1792.zip / gnat179b / t-adainc / s-imgllf.adb < prev    next >
Text File  |  1994-05-19  |  3KB  |  46 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       S Y S T E M . I M G _ L L F                        --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.5 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. --
  22. --                                                                          --
  23. ------------------------------------------------------------------------------
  24.  
  25. --  This is a little messed up for now, since we can't assume that the
  26. --  accessible sprintf routine handles long long float. We print the right
  27. --  number of digits, but the precision may get degraded. On almost all
  28. --  machines Long_Long_Float is the same as Long_Float so it doesn't matter
  29. --  but notably for the Intel x86, this will need fixing later on (???).
  30.  
  31. function System.Img_LLF (V : Long_Long_Float; B : Address) return Natural is
  32.  
  33.    procedure sprintf (Target, Fmt : Address;
  34.                       Prec        : Natural;
  35.                       Val         : Long_Float;
  36.                       Length_Ptr  : Address);
  37.    pragma Import (C, sprintf);
  38.  
  39.    Fmt    : constant String := "% .*e%n" & Ascii.NUL;
  40.    Length : aliased Natural;
  41. begin
  42.    sprintf (B, Fmt'Address, Long_Long_Float'digits, Long_Float (V),
  43.      Length'Address);
  44.    return Length;
  45. end System.Img_LLF;
  46.